home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / X-Menu 2.0 / CustomWindow.h < prev    next >
Encoding:
Text File  |  2001-06-23  |  225 b   |  14 lines

  1. #import "CustomView.h"
  2. #import <Cocoa/Cocoa.h>
  3.  
  4. @interface CustomWindow : NSWindow
  5. {
  6.     NSPoint initialLocation;
  7.     IBOutlet NSMenu    *myMenu;
  8.     IBOutlet CustomView *myView;
  9. }
  10.  
  11. - (IBAction)openSystemPreferences:(id)sender;
  12.  
  13. @end
  14.